home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Freeware 2002 November
/
SGI Freeware 2002 November - Disc 1.iso
/
dist
/
fw_bind9.idb
/
var
/
named
/
named.conf.z
/
named.conf
Wrap
Text File
|
2002-07-08
|
1KB
|
45 lines
/*
This is a CHROOTED BIND 9 configuration file that can be used
as a local caching nameserver.
*** NOTE: ***
As configured, this server is only listening on localhost
(127.0.0.1.) To allow other hosts to use this server,
comment out the listen-on directive below.
*/
logging {
category lame-servers { null; };
category default { default_syslog; };
};
options {
// Specially configure the directory and pid-file
// because the service is running chroot'd.
// NOTE: named must be started with proper
// -t and -c options for this to work properly, and
// the -u (user) argument is also strongly suggested.
//
directory "/";
pid-file "named.pid";
// Comment out this block if you want to allow other hosts
// to use this server. Also see the bind documentation
// on ways to restrict access to specific hosts or for
// specific zones.
listen-on { 127.0.0.1; };
};
zone "." {
type hint;
file "root.cache";
};
zone "0.0.127.in-addr.arpa" in {
type master;
notify no;
file "127.rev";
};